Answer:

The answer is given below:

Full Array

Here is the program that fills every slot of the array with the name of a day:

DIM DAY$(1 TO 7)    	          ' Make an array of seven strings
LET DAY$( 1 ) = "Monday"            ' Make "Monday" the first item
LET DAY$( 2 ) =  "Tuesday"    
LET DAY$( 3 ) =  "Wednesday"    
LET DAY$( 4 ) =  "Thursday"    
LET DAY$( 5 ) =  "Friday"    
LET DAY$( 6 ) =  "Saturday"    
LET DAY$( 7 ) =  "Sunday"    
END

After all the slots have been filled, here is how the array looks:

Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
1
2
3
4
5
6
7

QUESTION 9:

Imagine that the following statements are in the program, just before END. Fill in the blanks so that the days of the week are printed out in order.

PRINT "The days are ", DAY$( __ ), DAY$( __ ), DAY$( __ ), DAY$( __ ) 
PRINT DAY$( __ ), DAY$( __ ), " and " DAY$( __ )